home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -seriously_amiga- / shareware / misc / amigaguide_htw / aghtw_part2 (.txt) < prev    next >
Amigaguide Document  |  1997-12-12  |  43KB  |  745 lines

  1. @DATABASE "AGHTW-Part2"
  2. @$VER: Amigaguide_How_To_Write_Pt2 01.04 (05.12.97) Copyright 
  3.  1997 Frank P. Bunton
  4. @INDEX "AGHTW_Index/Index"
  5. @NODE "MAIN" "How To Write AG - Part 2"
  6. @TOC "AGHTW_Index/Main"
  7. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS - PART 2@{UB}@{UU}
  8. @{JLEFT}
  9. This node should not normally be displayed if you started off from the
  10. index file. But in case you started off this file as an individual document,
  11. you can now access the following items:-
  12. @{JCENTER}
  13. @{" Making Links With Label Commands       " LINK "MakingLinks"}
  14. @{"   Commands Available                   " LINK "Commands"}
  15. @{"   Paths Names With File Names          " LINK "PathNames"}
  16. @{"   Links to Document Nodes              " LINK "LinkCommand"}
  17. @{"   Links To Nodes In Other AG Documents " LINK "OtherDocs"}
  18. @{"   Links to Non Amigaguide Documents    " LINK "NonGuideDocs"}
  19. @{"   ALINK Command                        " LINK "ALink"}
  20. @{"   Links to Other File Types - v39+     " LINK "OtherLinks"}
  21. @{"   - In Early Versions Of Amigaguide    " LINK "OtherLinksEarly"}
  22. @{"   Links To External Commands           " LINK "ExternalCommands"}
  23. @{"      SYSTEM Command                    " LINK "System"}
  24. @{"         SYSTEM Examples                " LINK "SystemExamples"}
  25. @{"         Using RUN With SYSTEM Command  " LINK "SystemRun"}
  26. @{"      RX  Command                       " LINK "Rx"}
  27. @{"      RXS Command                       " LINK "Rxs"}
  28. @{"      ONOPEN & ONCLOSE Commands         " LINK "OnOpenClose"}
  29. @{"   Links To Quit & Close                " LINK "QuitClose"}
  30. @{"   Link  To BEEP                        " LINK "Beep"}
  31. @{" MAIN INDEX " LINK "AGHTW_Index/Main"}
  32. @{JCENTER}=== End of Text ===
  33. @ENDNODE
  34. @NODE "MakingLinks" "How To Write AG - Making Links (Pt2)"
  35. @TOC "AGHTW_Index/Contents"
  36. @PREV "AGHTW_Part1/MainNode"
  37. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  38. MAKING LINKS WITH LABEL COMMANDS@{UB}@{UU}
  39. @{JLEFT}
  40. One of the most powerful features of a hypertext program like Amigaguide is
  41. its ability to jump to @{"nodes" LINK "AGHTW_Part5/Nodes"} of the @{"same document" LINK "LinkCommand"24} or @{"other documents" LINK "OtherDocs"}, to
  42. @{"load files" LINK "OtherLinks"} other than text files or to carry out @{"external commands" LINK "ExternalCommands"}.
  43. This is all done with @{B}buttons@{UB} that set up the links.
  44. A button is set up in this way:-
  45.   \@{"Text For Button" COMMAND "Command Argument"}
  46. @{B}@{U}Let's break this up into its parts@{UB}.@{UU}
  47. First is the @{"@ sign" LINK "AGHTW_Part1/Inserting"8} to indicate that what follows is an Amigaguide command.
  48. The whole of the link command must be enclosed in curly brackets {}.
  49. You @{B}MUST@{UB} ensure that there is no space between the \@{ and the first "
  50. (Please read @{"Problem 5" LINK "AGHTW_Part5/Problems"120} for details).
  51. Next comes a @{B}LABEL@{UB} (e.g. the "Text For Button" above) which is the text
  52. displayed in the document. It would appear like this:-
  53.   @{"Text For Button" LINK "Ha"}    (This is a false label so no point in clicking it!!)
  54. @{B}The label MUST be enclosed in inverted commas!!@{UB}
  55. Then comes the COMMAND which can be one of those listed in the @{"table below" LINK "Commands"}.
  56. Note that there @{B}MUST@{UB} be a space on either side of the COMMAND so that the
  57. inverted commas are not right up against either side of it. For example, all
  58. of these are @{B}WRONG@{UB}:-
  59.   \@{"Text For Button"COMMAND "Command Argument"}
  60.   \@{"Text For Button" COMMAND"Command Argument"}
  61.   \@{"Text For Button"COMMAND"Command Argument"}
  62. and this is @{B}CORRECT@{UB}:-
  63.   \@{"Text For Button" COMMAND "Command Argument"}
  64. Finally comes the @{B}command's argument@{UB}. An "argument" is some text which tells
  65. the command the way in which it is to act.
  66. This argument will depend on the type of COMMAND being used as indicated in
  67. the @{"table below" LINK "Commands"}.
  68. If a Command Argument has spaces then @{B}it MUST enclosed in inverted commas@{UB}.
  69. Command arguments without spaces do not need inverted commas but I would
  70. advise you to get into the habit of always using them so that you will not
  71. forget to put them in if needed.
  72. Sometimes you have labels set out in a table like this:-
  73.   @{"First Label" LINK "Ha"}
  74.   @{"Second label" LINK "Ha"}           (More false labels)
  75.   @{"Third Label" LINK "Ha"}
  76. The above display looks a bit tatty so I usually do it like this:-
  77.   \@{" First Label  " COMMAND "Command Argument"}
  78.   \@{" Second label " COMMAND "Command Argument"}
  79.   \@{" Third Label  " COMMAND "Command Argument"}
  80. which would look like this:-
  81.   @{" First Label  " LINK "Ha"}
  82.   @{" Second Label " LINK "Ha"}         (More false labels)
  83.   @{" Third Label  " LINK "Ha"}
  84. Note the placement of the spaces in the LABEL text to give equal sized
  85. buttons for each link and the extra space at the start and end of the text
  86. to give it a better appearance.
  87. @{JCENTER}=== End of Text ===
  88. @ENDNODE
  89. @NODE "Commands" "How To Write AG - Commands To Use With Links (Pt2)"
  90. @TOC "AGHTW_Index/Contents"
  91. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  92. COMMANDS AVAILABLE FOR USE WITH LABELS@{UB}@{UU}
  93. @{JLEFT}
  94. The following commands can be when @{"making links" LINK "MakingLinks"}:-
  95.   @{U}COMMAND@{UU}    @{U}   Argument     @{UU}    @{U}Actions that Will Take Place@{UU}
  96.   @{" LINK   " LINK "LinkCommand"}  Node Name           Jump to the node
  97.   @{" ALINK  " LINK "ALink"}  Node Name           Jump to the node
  98.   @{" SYSTEM " LINK "System"}  AmigaDOS Command    Execute the AmigaDOS Command
  99.   @{" RX     " LINK "Rx"}  ARexx Script Name   Execute the ARexx Script
  100.   @{" RXS    " LINK "Rxs"}  ARexx Instruction   Execute the ARexx Instruction
  101.   @{" QUIT   " LINK "QuitClose"}  None                Quit Amigaguide 
  102.   @{" CLOSE  " LINK "QuitClose"}  None                Close the Amigaguide window
  103.   @{" BEEP   " LINK "Beep"}  None                Operate the Amiga Alert
  104. "COMMAND" and "Argument" are used in these positions in the button set up:-
  105.         \@{"Text For Button" COMMAND "Command Argument"}
  106. @{JCENTER}=== End of Text ===
  107. @ENDNODE
  108. @NODE "PathNames" "How To Write AG - File Names and path Names (Pt2)"
  109. @TOC "AGHTW_Index/Contents"
  110. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  111. INCLUSION OF PATH NAMES WITH FILE NAMES@{UB}@{UU}
  112. @{JLEFT}
  113. When making links to:-
  114.   @{" Nodes within other documents  " LINK "OtherDocs"}
  115.   @{" Other file types              " LINK "OtherLinks"}
  116.   @{" External commands with SYSTEM " LINK "System"}
  117.   @{" ARexx scripts using RX        " LINK "Rx"}
  118. it may be necessary, when calling the file, to include the full path name or
  119. a partial path name to the file. At other times, the file name without any
  120. path can be used.
  121. @{B}IF YOU ARE IN ANY DOUBT@{UB} then it would be safest to use the @{B}FULL path name@{UB} as
  122. you will then avoid the slip ups that can occur when a file name is used on
  123. its own or with a partial path name.
  124. @{B}@{U}Using a File Name Without Any Path Name@{UB}@{UU}, for example:-
  125.   \@{"Button Name" LINK "filename"}
  126. This can be done if you are @{B}absolutely sure that "FileName" is in the
  127. directory being recognised by Amigaguide/Multiview as its@{UB} @{"Current Directory" LINK "AGHTW_Part1/CD"}.
  128. If "FileName" is in a directory other than Amigaguide/Multiview's current
  129. directory then you should use the full path name except in cases outlined in
  130. the next section "Partial Path Name".
  131. @{B}@{U}Using a File Name With a Partial Path Name@{UB}@{UU}, for example:-
  132.   \@{"Button Name" LINK "DirectoryName/FileName"}
  133. This can be done if "DirectoryName" is a sub directory of Amigaguide's or 
  134. Multiview's @{"current directory" LINK "AGHTW_Part1/CD"}.
  135. @{B}@{U}Using The Full Path Name@{UB}@{UU}, for example:-
  136.   \@{"Button Name" LINK "DiskName:DirectoryName/FileName"}
  137. This should be done in all cases other than the two outlined above.
  138. It should also be used when there is any doubt as to what to do!!!
  139. It is certainly the @{B}SAFEST WAY!!!@{UB}
  140. @{JCENTER}=== End of Text ===
  141. @ENDNODE
  142. @NODE "LinkCommand" "How To Write AG - Links To Document Nodes (Pt2)"
  143. @TOC "AGHTW_Index/Contents"
  144. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  145. LINKS TO DOCUMENT NODES
  146. THE LINK COMMAND
  147. All Versions - LOCAL Command@{UB}@{UU}
  148. @{JLEFT}
  149. (See also @{"Making Links" LINK "MakingLinks"} and @{"ALINK" LINK "ALink"}.)
  150. The LINK command can be used to jump to:-
  151. *  Nodes in the same Amigaguide document (this section)
  152. * @{" Nodes In Other Amigaguide Documents " LINK "OtherDocs"}
  153. * @{" Non Amigaguide Documents            " LINK "NonGuideDocs"}
  154. * @{" Files of Other (non Document) Types " LINK "OtherLinks"}
  155. The @{"basic Amigaguide document" LINK "AGHTW_Part1/Getting"} that I discussed had only one @{"node" LINK "AGHTW_Part5/Nodes"} which is
  156. usually not enough. So to have more than one node, you need to set up some
  157. links to the other nodes.
  158. I have already discussed how to set up links under the heading @{"MakingLinks" LINK "MakingLinks"}.
  159. To link to other nodes in the same document you use the LINK command as
  160. illustrated by:-
  161.   \@{"Label Text" LINK "NodeName"}
  162.   \@{"Label Text" LINK "NodeName"<LineNumber>}
  163. If "LineNumber" is used the link will put that line number at the top of the
  164. window instead of the first line of the node. For example:-
  165.   \@{"problem 3" LINK "AGHTW_Part5/Problems"52} and
  166.      \@{"problem 4" LINK "AGHTW_Part5/Problems"97}
  167. (The above is all in one @{"physical line" LINK "AGHTW_Part5/Physical"} when illustrated 5 lines below.)
  168. This would put line number 52 and line 97 respectively of the node "Problems"
  169. at the top of the window. The above line would look like this:-
  170.   @{"problem 3" LINK "AGHTW_Part5/Problems"52} and @{"problem 4" LINK "AGHTW_Part5/Problems"97}
  171. Please read about these problems now as they relate to this topic.
  172. Another problem is that version 34 seems to start the line count at 1 and
  173. version 39 & 40 at 0 (zero) so that if you click on "Problem 3" and
  174. "Problem 4" above:-
  175. - with version 39 & 40 the first lines of the problems will be one below
  176.   the top
  177. - with version 34 the first lines of the problems will be at the top
  178. I have purposely done it like this as most cross references in this document
  179. start with a blank line above the target line thus allowing users of both
  180. version 34 and versions 39/40 to easily see the reference. However, at times,
  181. users of version 34 will have to scroll up one line to see the target line.
  182. (Oh for @{"my suggestion" LINK "AGHTW_Part5/Problems"97} about aiming at targets instead of line numbers!!)
  183. If the node to be reached is in the same document then the above is all that
  184. is needed. For example, to jump to the MAIN node of this document (which is
  185. @{"not normally visible" LINK "AGHTW_Part1/MainNode"30}) you could use:-
  186.   Click on \@{"Main Node" LINK "Main"} to read main node.
  187. which would appear like this (what you will see is @{"explained here" LINK "AGHTW_Part1/MainNode"30}):-
  188.   Click on @{"Main Node" LINK "Main"} to read main node.
  189. The LINK command can be used in a line of text (as shown above) or in a menu
  190. type situation as is used in the @{"Main Node" LINK "Main"} of this document (normally
  191. invisible) which is set up like this:-
  192. \@{" Making Links With Label Commands       " LINK "MakingLinks"}
  193. \@{"   Commands Available                   " LINK "Commands"}
  194. \@{"   Paths Names With File Names          " LINK "PathNames"}
  195. \@{"   Links to Document Nodes              " LINK "LinkCommand"}
  196. \@{"   Links To Nodes In Other AG Documents " LINK "OtherDocs"}
  197. \@{"   Links to Non Amigaguide Documents    " LINK "NonGuideDocs"}
  198. \@{"   ALINK Command                        " LINK "ALink"}
  199. \@{"   Links to Other File Types - v39+     " LINK "OtherLinks"}
  200. \@{"   - In Early Versions Of Amigaguide    " LINK "OtherLinksEarly"}
  201. \@{"   Links To External Commands           " LINK "ExternalCommands"}
  202. \@{"      SYSTEM Command                    " LINK "System"}
  203. \@{"         SYSTEM Examples                " LINK "SystemExamples"}
  204. \@{"         Using RUN With SYSTEM Command  " LINK "SystemRun"}
  205. \@{"      RX  Command                       " LINK "Rx"}
  206. \@{"      RXS Command                       " LINK "Rxs"}
  207. \@{"      ONOPEN & ONCLOSE Commands         " LINK "OnOpenClose"}
  208. \@{"   Links To Quit & Close                " LINK "QuitClose"}
  209. \@{"   Link  To BEEP                        " LINK "Beep"}
  210. Note the extra spaces in the labels the use of which was @{"discussed earlier" LINK "MakingLinks"56}.
  211. @{JCENTER}=== End of Text ===
  212. @ENDNODE
  213. @NODE "OtherDocs" "How To Write AG - Links To Other AG Document Nodes (Pt2)"
  214. @TOC "AGHTW_Index/Contents"
  215. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  216. LINKS TO DOCUMENT NODES
  217. LINKS TO OTHER AMIGAGUIDE STYLE DOCUMENTS@{UB}@{UU}
  218. @{JLEFT}
  219. (See also @{"Links to Non Amigaguide Documents" LINK "NonGuideDocs"}).
  220. As well as having node @{"links within the document" LINK "LinkCommand"24} you can also have links
  221. to nodes on other documents. This is done by specifying the @{"PATH to the file" LINK "PathNames"}
  222. containing the node as well as the node name itself.
  223. To illustrate how to do it let's make these assumptions:-
  224.  * The documents are in a directory called "Help" which is in an assigned
  225.    directory called "MyProgram:". The path to the help directory is
  226.    therefore:-
  227.       MyProgram:Help   
  228.  * The document to be called up is called "ExtraNotes" so that its full
  229.    path name is:-
  230.      MyProgram:Help/ExtraNotes
  231.  * The node to be viewed within the document "ExtraNotes" is called
  232.    "Something"
  233. To call up this node with a label name of "Help With Something" you would
  234. use:-
  235.    \@{"Help With Something" LINK "MyProgram:Help/ExtraNotes/Something"}
  236. Note that the node name is added to the file path name with the same type
  237. of path separator as the rest of the path, i.e. the / character.
  238. The above line would appear in the text like this: @{"Help With Something" LINK "MyProgram:Help/ExtraNotes/Something"}.
  239. If you click on this link you will most likely get a requester window asking
  240. you to insert the volume "MyProgram" as you are unlikely to have an
  241. assignment made to "MyProgram:" nor a disk with that name!
  242. @{"Click here" SYSTEM "Execute Miscellaneous/AssignMyProgram"} to assign "MyProgram:" to the directory holding this file (there
  243. will not be any visible sign of action) then go back and click on the above
  244. button with the label "Help With Something". I have included in this archive
  245. a directory called "Help" which contains the file "ExtraNotes" so as I can
  246. demonstrate the above.
  247. The above "Click here" button to do the assignment is set up like this:-
  248.   \@"Click here" SYSTEM "Execute Miscellaneous/AssignMyProgram"}
  249. (see @{"SYSTEM" LINK "System"}) and the script file that is executed "AssignMyProgram" has
  250. only one line which is as follows:-
  251.   Assign MyProgram: ""
  252. Using the AmigaDOS command "Assign" in this way makes the assignment to the
  253. current directory. This is all covered in @{"AmigaDOS For Beginners" LINK "AGHTW_Boring_Stuff/OtherDocs"7}.
  254. I could @{B}NOT@{UB} use:-
  255.   \@"Click here" SYSTEM "Assign MyProgram: """}
  256. because the "" after MyProgram: can not be accepted inside the inverted
  257. commas surrounding the argument in the command \@{"Label" SYSTEM "Argument"}
  258. @{"Click here" SYSTEM "Assign MyProgram:"} to remove the assignment to "MyProgram:" (again, there will be
  259. no visible sign of action).
  260. The above "Click here" button to remove the assignment is set up as follows:-
  261.   \@{"Click here" SYSTEM "Assign MyProgram:"}
  262. Using "Assign" in this way removes the previously made assignment to
  263. "MyProgram:". This time I can use the AmigaDOS command itself as the
  264. argument to the command SYSTEM.
  265. If you are @{B}absolutely sure that the other document is in the directory being
  266. recognised by Amigaguide/Multiview as its@{UB} @{"Current Directory" LINK "AGHTW_Part1/CD"} then you can
  267. omit the path name and just use the document and node name, as in:-
  268.    \@{"Help With Something" LINK "ExtraNotes/Something"}
  269. @{JCENTER}=== End of Text ===
  270. @ENDNODE
  271. @NODE "NonGuideDocs" "How To Write AG - Links To Non Guide Documents (Pt2)"
  272. @TOC "AGHTW_Index/Contents"
  273. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  274. @{B}@{U}LINKS TO NON AMIGAGUIDE TYPE DOCUMENTS
  275. All Versions@{UB}@{UU}
  276. @{JLEFT}
  277. (See also @{"Making Links" LINK "MakingLinks"}.)
  278. Links can be made to text documents that are @{B}NOT@{UB} Amigaguide style documents,
  279. i.e. documents without any nodes or other Amigaguide style commands.
  280. This is done in the same way as @{"Links To Other Amigaguide Style Documents" LINK "AGHTW_Part2/OtherDocs"}.
  281. As an example, the following line will allow you to view the
  282. startup-sequence file on your boot disk:-
  283.   \@{"View startup-sequence file" LINK "S:Startup-Sequence/MAIN"}
  284. which will appear in the text like this:-
  285.    @{"View startup-sequence file" LINK "S:Startup-Sequence/MAIN"}
  286. @{B}Note that the node name "MAIN" MUST be included in the command line argument
  287. even though it is a plain text file without any nodes!!@{UB}
  288. @{JCENTER}=== End of Text ===
  289. @ENDNODE
  290. @NODE "ALink" "How To Write AG - ALink Command (Pt2)"
  291. @TOC "AGHTW_Index/Contents"
  292. @NEXT "OtherLinks"
  293. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  294. @{B}@{U}ALINK COMMAND
  295. All Versions - LOCAL Command@{UB}@{UU}
  296. @{JLEFT}
  297. (See also @{"Making Links" LINK "MakingLinks"}.)
  298. This is similar to the @{"LINK" LINK "LinkCommand"} command and should be used in the same way.
  299. @{B}In Amigaguide version 34@{UB} the main difference is that ALINK opens the linked
  300. node in a new window. In this new window, however, the "Retrace" button is
  301. inactive and thus cannot be used to go back to the original window. But the
  302. "Contents" button will go back. The original window can be closed leaving
  303. the new window open.
  304. @{B}In Amigaguide versions 39 and 40@{UB} it opens the node in the same window
  305. and, as far as I can determine, is identical to LINK.
  306. Unless you have some real need to use it, I would suggest that you do not
  307. use this command.
  308. To demonstrate ALINK, I have used this button set up:-
  309.   \@{"Click here for an ALINK linkage" ALINK "AlinkDemo"}
  310. in this line:-
  311.   @{"Click here for an ALINK linkage" ALINK "AlinkDemo"}
  312. @{JCENTER}=== End of Text ===
  313. @ENDNODE
  314. @NODE "ALinkDemo" "How To Write AG - ALINK Demonstration (Pt2)"
  315. @TOC "AGHTW_Index/Contents"
  316. @NEXT ""
  317. @PREV ""
  318. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  319. ALINK COMMAND@{UB}@{UU}
  320. @{JLEFT}
  321. This node was reached by an ALINK command
  322. If you are using:-
  323. - @{B}Version 34@{UB}       - then it should be in a new window with the previous
  324.                      node still showing behind it. You can reposition the
  325.                      two windows so that both are visible at once.
  326. - @{B}Version 39 or 40@{UB} - then it should have appeared in the same window as the 
  327.                      previous node with the previous node being replaced by
  328.                      this node.
  329. @{JCENTER}=== End of Text ===
  330. @ENDNODE
  331. @NODE "OtherLinks" "How To Write AG - Links To Other Files Types (Pt2)"
  332. @TOC "AGHTW_Index/Contents"
  333. @PREV "ALink"
  334. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  335. LINKS TO FILES TYPES OTHER THAN DOCUMENTS
  336. This section applies only to  Versions 39 Onwards
  337. Of MULTIVIEW with the use of DATATYPES In OS 3.x!@{UB}@{UU}
  338. @{JLEFT}
  339. As well as having links to @{"other AG documents" LINK "OtherDocs"} and @{"non AG documents" LINK "NonGuideDocs"}, if
  340. your Amiga is equipped with MULTIVIEW and DATATYPES (as in Amigas using
  341. AmigaDOS 3.0 onwards) then your Amigaguide document can have links to files
  342. other than Amigaguide documents and plain text documents.
  343. These other files can be things such as pictures (of various formats such
  344. as .gif .iff .jpg), animations, sound files, etc. etc. All that is
  345. necessary is that you have the appropriate DATATYPE file installed on your
  346. system.
  347. The standard datatype files that come with Workbench 3.1 are:-
  348.   8SVX         For the display of IFF sound files
  349.   Amigaguide   For the display of Amigaguide text files
  350.   FTXT         For the display of IFF text files
  351.   ANIM         For the display of ANIM-format animation files
  352.   CDXL         For the display of CDXL-format animation files
  353.   ILBM         For the display of bitmap picture files
  354. These links are set up in the same way as @{"links to non AG documents" LINK "NonGuideDocs"}. For
  355. example, to show a picture, you would use something like this:-
  356.   \@"Show picture of cat" LINK "DiskName:Pictures/cat.pic/MAIN"}
  357. @{B}Note that the node name "MAIN" MUST be included in the command line even
  358. though it is a picture file without any text or nodes!!@{UB}
  359. (See also @{"Path Names" LINK "PathNames"}.)
  360. As an example, this line:-
  361.   \@{"Show Amiga Logo" LINK "Miscellaneous/AmigaLogo.pic/MAIN"}
  362. would appear like this:-
  363.   @{"Show Amiga Logo" LINK "Miscellaneous/AmigaLogo.pic/MAIN"}     (If using v34 you may get a window full of garbage!)
  364. and, if the file "AmigaLogo.pic" (that came with this archive) is still in
  365. this archive's "Miscellaneous" directory, then clicking the above will
  366. display the picture file.
  367. Similarly, this line:-
  368.   \@{"Sound The Cuckoo" LINK "Miscellaneous/Cuckoo.snd/MAIN"}
  369. will look like this:-
  370.   @{"Sound The Cuckoo" LINK "Miscellaneous/Cuckoo.snd/Main"}     (If using v34 you may get a window full of garbage!)
  371. and, when clicked, will open a new window with an icon that, when clicked,
  372. will make the cuckoo sound.
  373. (If anyone knows if it is possible to get the button the make the sound when
  374. clicked rather than opening a new window with the icon then @{I}please @{UI}let @{"me" LINK "AGHTW_Boring_Stuff/Author"}
  375. know! - but see  @{"Links To Other File Types In Early Versions" LINK "OtherLinksEarly"}.)
  376. There is no need to nominate the file type and/or the datatype file to use.
  377. Multiview will automatically use the correct datatype. However, if
  378. Multiview cannot find an appropriate datatype file in your system then you
  379. will be given an error message in the Multiview title bar:-
  380.   Unknown datatype for ..... (filename)
  381. @{B}@{U}See Also@{UB}@{UU} - @{"Links To Other File Types In Early Versions" LINK "OtherLinksEarly"} that I have included
  382.            mainly for users of versions of Amigaguide earlier than 39.
  383.            Users of versions 39 onwards may care to read this in case they
  384.            are writing for users of earlier versions.
  385. @{JCENTER}=== End of Text ===
  386. @ENDNODE
  387. @NODE "OtherLinksEarly" "How To Write AG - Links Other Files Early Versions (Pt2)"
  388. @TOC "AGHTW_Index/Contents"
  389. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  390. LINKS TO FILES TYPES OTHER THAN DOCUMENTS
  391. IN EARLY VERSIONS OF AMIGAGUIDE@{UB}@{UU}
  392. @{JLEFT}
  393. The @{"previous section" LINK "OtherLinks"} described how to make links to file types other than
  394. documents but this was only available in versions 39 onwards.
  395. The method I will describe here can be used in @{B}ANY @{UB}version so if you have a
  396. version earlier than 39, or you are writing for users of these earlier
  397. versions, then you should use the method described below.
  398. My thanks to @{"Christopher Jeffery" LINK "AGHTW_Boring_Stuff/Credits"5} for reminding me of this method and
  399. suggesting its inclusion.
  400. When you wish to load other file types without the benefit of @{"datatypes" LINK "OtherLinks"19}
  401. you can do it by this means which calls an external program to handle the
  402. file using the @{"SYSTEM" LINK "System"} command:-
  403.   \@{"Button Name" SYSTEM "Path/ProgramName Path/FileName"}
  404.   Where - Path/ProgramName is the @{"full path" LINK "PathNames"} and name of the utility program
  405.                            that will operate the file - e.g. a picture
  406.                            viewer or a sound player, and
  407.         - Path/FileName    is the full path and the file name to be used.
  408. For example, if you had a sound player called "Playsound" and a picture
  409. viewer called "ShowPic" both in "DH0:Utilities" and you wanted to
  410. @{"show the picture" LINK "OtherLinks"38} and @{"hear the sound" LINK "OtherLinks"50} I illustrated in the previous section,
  411. then you could use:-
  412.   \@{"Show AmigaLogo" SYSTEM "DH0:Utilities/ShowPic Miscellaneous/AmigaLogo.pic"}
  413.   \@{"Sound The Cuckoo" SYSTEM "DH0:Utilities/PlaySound Miscellaneous/Cuckoo.snd"}
  414. I cannot properly illustrate these as I do not know what utilities my
  415. readers have and which directories they keep them in. This is the main draw
  416. back with this method.
  417. If your Amigaguide document is only for yourself then there is no problem.
  418. But if it is meant for the use of other people then, to make it foolproof,
  419. you would really have to include the utility programs in your archives which
  420. would make them more bulky than necessary. You would also need to consider,
  421. in the case of copyright utility programs, whether their distribution in
  422. your archives is permissible or not.
  423. For these reasons, I have not provided working examples of the above two
  424. command lines.
  425. @{JCENTER}=== End of Text ===
  426. @ENDNODE
  427. @NODE "ExternalCommands" "How To Write AG - Links To External Commands (Pt2)"
  428. @TOC "AGHTW_Index/Contents"
  429. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  430. LINKS TO EXTERNAL COMMANDS@{UB}@{UU}
  431. @{JLEFT}
  432. It is possible to call up external commands from AmigaDOS and ARexx by
  433. inserting link commands into the text.
  434. There are five Amigaguide commands you can use for these purposes. They
  435. are:-
  436.   @{"SYSTEM   " LINK "System"} - To call up @{B}AmigaDOS commands@{UB}, or other programs that can be
  437.                run from a CLI/Shell window,
  438.   @{" RX      " LINK "Rx"} - To execute an @{B}ARexx script file@{UB}.
  439.   @{" RXS     " LINK "Rxs"} - To execute an @{B}ARexx instruction@{UB},
  440.   @{" ONOPEN  " LINK "OnOpenClose"} - To execute an @{B}ARexx script@{UB} when a document or window is
  441.                @{B}opened@{UB},
  442.   @{" ONCLOSE " LINK "OnOpenClose"} - To execute an @{B}ARexx script@{UB} when a document or window is
  443.                @{B}closed@{UB},
  444. I will not go into any detailed explanations of how to use AmigaDOS commands
  445. or ARexx instructions. If you want to know more about these topics then get
  446. hold of my other products @{"`AmigaDOS For Beginners' & `ARexx For Beginners'" LINK "AGHTW_Boring_Stuff/OtherDocs"}.
  447. @{JCENTER}=== End of Text ===
  448. @ENDNODE
  449. @NODE "System" "How To Write AG - The SYSTEM Command (Pt2)"
  450. @TOC "AGHTW_Index/Contents"
  451. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  452. THE SYSTEM COMMAND
  453. All Versions - LOCAL Command@{UU}@{UB}
  454. @{JLEFT}
  455. (See also @{"Making Links" LINK "MakingLinks"}.)
  456. This command is used as follows:-
  457.   \@{"Label Name" SYSTEM "Shell/CLI Command Line"}
  458. See @{"`Examples Of SYSTEM'" LINK "SystemExamples"} for examples.
  459. "@{B}Shell/CLI Command Line@{UB}" is any command line such as can be entered in a
  460. Shell/CLI window and can be:-
  461.  - any @{B}AmigaDOS command@{UB} with its appropriate arguments, or
  462.  - the name of an @{B}independent program @{UB}(non-AmigaDOS) that is capable of
  463.    being run from Shell/CLI.
  464. In other words, it can be anything that you can normally enter at the prompt
  465. in a Shell/CLI window.
  466. There will be times when you need to use the AmigaDOS command RUN at the
  467. start of the command line argument as in:-
  468.   \@{"Label Name" SYSTEM "RUN Shell/CLI Command Line"}
  469. See @{"`Using RUN With SYSTEM'" LINK "SystemRun"} for explanation.
  470. @{B}AmigaDOS commands@{UB} do @{B}NOT@{UB}, in general, create their own input and/or output
  471. (I/O) windows. (There are a few exceptions to this rule such as Newshell,
  472. Requestfile and Ed.) They use the CLI window in which they are activated.
  473. (By "AmigaDOS Command" I mean the commands in the "C:" directory and @{B}NOT@{UB} the
  474. programs in other directories on the Workbench disk which generally @{B}DO @{UB}
  475. create their own I/O windows.)
  476. So if you use, as the SYSTEM argument, an @{B}AmigaDOS command@{UB} that needs to
  477. have an I/O window then, if the Amigaguide document was started from:-
  478. - @{B}a Workbench icon@{UB}    - there will be no appropriate I/O window and thus
  479.                         the input will not be possible and 
  480.                         the output will not be seen
  481. - @{B}a Shell/CLI window@{UB}  - then that Shell or CLI window will be used
  482.                         as the I/O window for the command.
  483. The same cannot normally be said about independent (non AmigaDOS) programs
  484. as most provide their own I/O windows. However, some can only be started
  485. from Shell/CLI and do not provide their own I/O windows. In these cases,
  486. the above will apply.
  487. @{JCENTER}=== End of Text ===
  488. @ENDNODE
  489. @NODE "SystemExamples" "How To Write AG - The SYSTEM Command Examples (Pt2)"
  490. @TOC "AGHTW_Index/Contents"
  491. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  492. EXAMPLES OF THE THE SYSTEM COMMAND@{UB}@{UU}
  493. @{JLEFT}
  494. As an example of SYSTEM, a label such the following one would allow the
  495. reader to open a new Shell/CLI window:-
  496.   \@{"Open New Shell/CLI Window" SYSTEM "Newshell"}
  497. and the label would appear in the document like this:-
  498.   @{"Open New Shell/CLI Window" SYSTEM "Newshell"}
  499. An AmigaDOS script file could be made to run in this shell window by using:-
  500.   \@{"Open New Shell/CLI Window" SYSTEM "Newshell FROM Path/ScriptName"}
  501. This technique could be used to provide an @{"input/output window" LINK "System"33} for your
  502. AmigaDOS commands. For example, this command line:-
  503.   \@{"Click here to start script" SYSTEM "Newshell
  504.     CON:0/10/640/100/DemoScript/CLOSE FROM Miscellaneous/DemoScript"}
  505. (All the above is in the one line!)
  506. It would appear like this:-
  507.  @{"Click here to start script" SYSTEM "Newshell CON:0/10/640/100/DemoScript/CLOSE FROM Miscellaneous/DemoScript"}
  508. and, if you still have the file "DemoScript" in the "Miscellaneous"
  509. directory of this set, (it came in the same archive) then clicking on this
  510. button should cause the script to be executed. @{"Click here" LINK "Miscellaneous/DemoScript/MAIN"} to read the
  511. script itself.
  512. There are also some examples of SYSTEM in the @{"`Links To Other Documents'" LINK "OtherDocs"49}
  513. section.
  514. @{JCENTER}=== End of Text ===
  515. @ENDNODE
  516. @NODE "SystemRun" "How To Write AG - Using RUN With The SYSTEM Command (Pt2)"
  517. @TOC "AGHTW_Index/Contents"
  518. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  519. USING RUN WITH THE SYSTEM COMMAND
  520. All Versions - LOCAL Command@{UU}@{UB}
  521. @{JLEFT}
  522. You should note that sometimes it is necessary to use RUN in the SYSTEM
  523. argument:-
  524.   \@{"Label Name" SYSTEM "RUN Shell/CLI Command Line"}
  525. To demonstrate the difference between using RUN and not using RUN I will
  526. use the "Clock" program which, to the best of my knowledge, is a standard
  527. program in the "Utilities" draw of @{B}ALL@{UB} Amiga Workbench versions. To activate
  528. the clock we could use:-
  529.   \@{"Start Clock" SYSTEM "Sys:Utilities/Clock"}
  530. which would look like this:-
  531.   @{"Start Clock" SYSTEM "Sys:Utilities/Clock"}
  532. If you click on this button and no clock appears then you may have moved
  533. your clock to another directory or deleted it altogether!
  534. With the clock running, what happens next depends on the Amigaguide version
  535. being used.
  536. With @{B}Version 34@{UB}, if the Amigaguide window is selected the mouse pointer goes
  537. to sleep and the Amigaguide window is completely unusable until the clock
  538. program is exited.
  539. With @{B}Versions 39 & 40@{UB}, if the Amigaguide/Multiview window is selected, the
  540. mouse @{B}does not@{UB} go to sleep and the window can still be scrolled up and down
  541. but the link buttons will not work until the clock is exited.
  542. To prevent this type of hold up we need to ensure that the clock is started
  543. using the RUN command as illustrated by this example:-
  544.   \@{"Start Clock With RUN" SYSTEM "RUN Sys:Utilities/Clock"}
  545. which would look like this:-
  546.   @{"Start Clock With RUN" SYSTEM "RUN Sys:Utilities/Clock"}
  547. Now the reader can continue to use the Amigaguide document while the clock
  548. continues running.
  549. @{B}When to Use Or Not Use RUN@{UB}
  550. Use RUN if you want the reader to be able to continue reading the document
  551. while the program continues to run.
  552. Do NOT use RUN if you wish the program to finish its function before the
  553. reader continues with the document.
  554. But remember that some programs will detach themselves from the process in
  555. which they were started and act as if RUN was used even if it wasn't used!
  556. This is illustrated by the NEWSHELL command @{"used above" LINK "SystemExamples"}.
  557. @{JCENTER}=== End of Text ===
  558. @ENDNODE
  559. @NODE "Rx" "How To Write AG - The RX Command (Pt2)"
  560. @TOC "AGHTW_Index/Contents"
  561. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  562. THE RX COMMAND - LINKS TO AREXX SCRIPTS
  563. All Versions - LOCAL Command@{UU}@{UB}
  564. @{JLEFT}
  565. (See also @{"Making Links" LINK "MakingLinks"} and @{"Links To ARexx Instructions" LINK "Rxs"}.)
  566. This command will allow the execution of an ARexx script file. It is used
  567. like this:-
  568.    \@{"Text for Button" RX "MyDisk:ARexx_Scripts/ScriptName.rexx"}
  569. The above line would appear in the text as follows:-
  570.   @{"Text for Button" RX "MyDisk:ARexx_Scripts/ScriptName.rexx"}    (This is a false label. Clicking on it will get you
  571.                        nothing except a file requester to insert MyDisk:!!)
  572. Unless the script file is in the @{"current directory" LINK "AGHTW_Part1/CD"} being recognised by
  573. Amigaguide/Multiview, the @{"full path name" LINK "PathNames"38} for the file, or maybe a
  574. @{"partial path name" LINK "PathNames"31}, should be used. An example using a partial file name is:-
  575.    \@{"Run Test ARexx Program" RX "Miscellaneous/TestProgram"}
  576. This button appears like this:-
  577.    @{"Run Test ARexx Program" RX "Miscellaneous/TestProgram"}
  578. To use this button, you should make sure the file "TestProgram.guide" is
  579. still in the "Miscellaneous" directory. @{"Click here" LINK "Miscellaneous/TestProgram.guide/MAIN"} to read the ARexx script
  580. "TestProgram.guide" that is linked to the above button.
  581. Note that the ARexx script file name suffix is ".guide" and not ".rexx"
  582. as Amigaguide/Multiview look for files with the ".guide" suffix when a file
  583. name without a suffix is used. Thus we do not need to include the suffix in
  584. the file name used in the command line.
  585. If the script file name had any other suffix but ".guide" then you would
  586. have to include the suffix in the command line. For example:-
  587.    \@{"Run Test ARexx Program" RX "Miscellaneous/TestProgram.rexx"}
  588. @{JCENTER}=== End of Text ===
  589. @ENDNODE
  590. @NODE "Rxs" "How To Write AG - The RXS Command (Pt2)"
  591. @TOC "AGHTW_Index/Contents"
  592. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  593. THE RXS COMMAND - LINKS TO AREXX INSTRUCTIONS
  594. All Versions - LOCAL Command@{UU}@{UB}
  595. @{JLEFT}
  596. (See also @{"Making Links" LINK "MakingLinks"} and @{"Links To ARexx Scripts" LINK "Rx"}.)
  597. This command allows an ARexx instruction string to be included as the
  598. action to be carried out when the button is clicked.
  599. An "ARexx instruction string" consists of an ARexx instruction together
  600. with its arguments. Note that the way in which this is different to RX is
  601. that RX calls an external ARexx script file and RXS has all the ARexx
  602. instructions in the one line embedded within the button.
  603. It is used like this:-
  604.   \@{"Text for button" RXS "ARexx instruction string"}
  605. To give an example, I will include the ARexx instruction ADDRESS which
  606. tells ARexx to talk to an external program, in this case AmigaDOS which has
  607. an ARexx port name of "COMMAND". The AmigaDOS command "NewShell" is then
  608. sent to AmigaDOS and a new shell window should appear. This is how it would
  609. be set up:-
  610.   \@{"Click to open new shell" RXS "ADDRESS 'COMMAND' 'NewShell'"}
  611. and it would appear like this:-
  612.   @{"Click to open new shell" RXS "ADDRESS 'COMMAND' 'NewShell'"}
  613. (This is a bit pointless as you could just use the SYSTEM command as we did
  614. @{"earlier" LINK "SystemExamples"5} but it is a simple way of demonstrating RXS.
  615. @{JCENTER}=== End of Text ===
  616. @ENDNODE
  617. @NODE "OnOpenClose" "How To Write AG - The ONOPEN & ONCLOSE Commands (Pt2)"
  618. @TOC "AGHTW_Index/Contents"
  619. @NEXT "QuitClose"
  620. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  621. THE ONOPEN & ONCLOSE COMMANDS
  622. Version 40 - LOCAL and GLOBAL Commands@{UU}@{UB}
  623. @{JLEFT}
  624. These two commands will cause an ARexx script to be executed when a
  625. document or window is opened or when it closed respectively.
  626. When used as @{B}global@{UB} commands:-
  627.  - ONOPEN  executes the ARexx script immediately after Amigaguide or
  628.            Multiview is started and before the display window is opened.
  629.  - ONCLOSE executes the ARexx script after the CLOSE gadget is clicked or
  630.            the "Project/Quit" menu item is selected but before the display
  631.            window is closed.
  632. When used as @{B}local@{UB} commands:-
  633.  - ONOPEN  executes the ARexx script before the node window in which it is
  634.            contained is opened.
  635.  - ONCLOSE executes the ARexx script when the node window in which it is in
  636.            is exited but just before it goes to the next or previous node.
  637.            This could happen when one of the Amigaguide window buttons
  638.            ("Retrace" etc.) is selected or the close gadget is clicked.
  639. The way they are used is as follows:-
  640.   #ONOPEN "Path/filename of ARexx Script"            (remember that  @{"# = @" LINK "AGHTW_Part1/Important"})
  641.   #ONCLOSE "Path/filename of ARexx Script"
  642. The scripts for ONOPEN and ONCLOSE can be the same or different.
  643. If you are @{B}absolutely sure that the ARexx script is in the directory being
  644. recognised by Amigaguide/Multiview as its@{UB} @{"Current Directory" LINK "AGHTW_Part1/CD"} then you can
  645. omit the @{"full path name" LINK "PathNames"38} and just use the script name. Or you can use a
  646. @{"partial path name" LINK "PathNames"31}, as in the following two examples lines which are in the
  647. node that you will reach when you @{"click here" LINK "OnExample"}:-
  648.   #ONOPEN "Miscellaneous/TestProgram_Open"           (remember that  @{"# = @" LINK "AGHTW_Part1/Important"})
  649.   #ONCLOSE "Miscellaneous/Testprogram_Close"
  650. When I discussed @{"RX" LINK "Rx"33} I said that RX would recognise the ".guide" suffix.
  651. For some strange reason, the ONOPEN and ONCLOSE will @{B}NOT@{UB} recognise
  652. ".guide" but will recognise the ".rexx" suffix. The above two script files
  653. are therefore in this archive with the names:-
  654.   Miscellaneous/TestProgram_Open.rexx
  655.   Miscellaneous/Testprogram_Close.rexx
  656. @{"Click here" LINK "Miscellaneous/TestProgram_Open.rexx/MAIN"} to read the "TestProgram_Open.rexx" script.
  657. @{"Click here" LINK "Miscellaneous/TestProgram_Close.rexx/MAIN"} to read the "TestProgram_Close.rexx" script.
  658. @{JCENTER}=== End of Text ===
  659. @ENDNODE
  660. @NODE "OnExample" "How To Write AG - Example ONOPEN ONCLOSE (Pt2)"
  661. @ONOPEN "Miscellaneous/TestProgram_Open"
  662. @ONCLOSE "Miscellaneous/Testprogram_Close"
  663. @TOC "AGHTW_Index/Contents"
  664. @NEXT ""
  665. @PREV ""
  666. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  667. EXAMPLE OF THE ONOPEN AND ONCLOSE COMMANDS@{UB}@{UU}
  668. @{JLEFT}
  669. If you are using Amigaguide version 40 onwards you should have seen a
  670. window open briefly just before this node window opened. You will see
  671. another window open briefly when you exit this node.
  672. @{JCENTER}=== End of Text ===
  673. @ENDNODE
  674. @NODE "QuitClose" "How To Write AG - Quit & Close Links (Pt2)"
  675. @TOC "AGHTW_Index/Contents"
  676. @PREV "OnOpenClose"
  677. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  678. LINKS TO QUIT AND CLOSE
  679. QUIT & CLOSE COMMANDS
  680. Version 34 - LOCAL Command@{UB}@{UU}
  681. @{JLEFT}
  682. (See also @{"Making Links" LINK "MakingLinks"}.)
  683. These commands create buttons that, when clicked, will close the Amigaguide
  684. window in which they appear. They are used like this:-
  685.   \@{"Text for button" QUIT}
  686.   \@{"Text for button" CLOSE}
  687. Note that there is no @{"argument" LINK "Commands"} for these two commands.
  688. The difference between to two is that:-
  689.   - "CLOSE" will only close the window in which it appears. For example, if
  690.     other windows have been opened with @{"ALINK" LINK "ALink"} then "CLOSE" only closes that
  691.     window in which it appears and leaves OPEN all other windows connected
  692.     with the original document.
  693.   - "QUIT" will close ALL windows opened from the original document as well
  694.     as the original document's window no matter which window it appears in.
  695. @{B}@{U}Comment For Version 39@{UB}@{UU}
  696. Buttons set up in this way will @{B}NOT APPEAR@{UB} when viewed with Amigaguide or
  697. Multiview version 39.
  698. @{B}@{U}Warning For Version 40@{UB}@{UU}
  699. I will NOT include demonstration buttons here as their use creates problems
  700. in version 40. For example, if buttons using these commands are included,
  701. and the reader clicks on the buttons, then everything freezes up. You can no
  702. longer use the buttons at the top of the Amigaguide document (e.g. "Retrace"
  703. "Contents" etc.) But fortunately, the close gadget still works!
  704. Even if you are using version 34 (which is the only version in which they
  705. work) I would suggest that you DO NOT use QUIT and CLOSE in case anyone
  706. reading your documents is using later versions or in case you upgrade your
  707. own Amiga.
  708. @{JCENTER}=== End of Text ===
  709. @ENDNODE
  710. @NODE "Beep" "How To Write AG - Link To Beep (Pt2)"
  711. @TOC "AGHTW_Index/Contents"
  712. @NEXT "AGHTW_Part3/GlobalLocal"
  713. @{B}@{U}@{JCENTER}HOW TO WRITE AMIGAGUIDE DOCUMENTS
  714. LINK TO BEEP
  715. All Versions EXCEPT 39 - LOCAL Command@{UB}@{UU}
  716. @{JLEFT}
  717. (See also @{"Making Links" LINK "MakingLinks"}.)
  718. The BEEP command links to the Amiga's alert signal. This signal can be a
  719. screen flash (in all AmigaDOS versions) or, in AmigaDOS v2.1 onwards, a
  720. flash and/or a sound depending on how you have your SOUND preference set up.
  721. You can set up a beep button like this:-
  722.   \@{"Button Text" Beep}
  723. (There is no @{"argument" LINK "Commands"} for this command.)
  724. The above example would appear as shown below between the arrows:-
  725.   --> @{"Button Text" Beep} <--
  726. If you are using Amigaguide/Multiview version 39 then you will probably @{B}NOT@{UB}
  727. see a button between the two arrows but users of versions 34 and 40 should
  728. be able to see and use the button.
  729. Clicking on the button should activate the Amiga's alert.
  730. It is interesting to note that, in version 34, @{"ANY unrecognised command" LINK "AGHTW_Part1/Unrecognised"} will
  731. activate the Amiga's alert signal.
  732. Please @{UI}let @{"me" LINK "AGHTW_Boring_Stuff/Author"} know if you know of any use for the BEEP command because I
  733. cannot think of any!!
  734. Thanks to @{"Oleg Sergeev" LINK "AGHTW_Boring_Stuff/Credits"27} for telling me about this command.
  735. @{JCENTER}=== End of Text ===
  736. @ENDNODE
  737. @NODE "Ha" "Gotcha!! (Pt2)"
  738. @TOC "AGHTW_Index/Contents"
  739. @NEXT ""
  740. @PREV ""
  741. @{JCENTER}
  742. HA!! I knew you couldn't resist clicking on the "false" label!
  743. @{JCENTER}=== End of Text ===
  744. @ENDNODE
  745.